home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1997 December / PC Pro December 1997 CD-Rom coverdisc.iso / symantec / dbAnywh / JAVA.BIN / CLASSES.ZIP / sun / tools / debug / BreakpointQueue.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-14  |  684 b   |  26 lines

  1. package sun.tools.debug;
  2.  
  3. class BreakpointQueue {
  4.    // $FF: renamed from: pc int
  5.    int field_0;
  6.    Thread thread;
  7.    int opcode;
  8.    BreakpointQueue nextQ;
  9.    Throwable exception;
  10.    int catch_pc;
  11.    boolean updated;
  12.  
  13.    synchronized boolean nextEvent() {
  14.       try {
  15.          this.wait();
  16.       } catch (InterruptedException var1) {
  17.       }
  18.  
  19.       return true;
  20.    }
  21.  
  22.    synchronized void reset() {
  23.       this.field_0 = -1;
  24.    }
  25. }
  26.